home *** CD-ROM | disk | FTP | other *** search
- import java.io.DataInputStream;
-
- class CFrameResponse extends CResponse {
- protected CVarOrValue m_vvFrameNo = new CVarOrValue();
- protected int m_nFlags = 0;
- protected String m_strObject = "";
- protected int m_nPollTime = 500;
- private double m_dSetAt = (double)0.0F;
-
- boolean LoadFromFile(DataInputStream var1) {
- this.m_strObject = FileLoad.ReadCString(var1);
- this.m_nFlags = FileLoad.ReadCPlusInt(var1);
- this.m_nPollTime = FileLoad.ReadCPlusInt(var1);
- this.m_vvFrameNo.LoadFromFile(var1);
- System.out.println("Warning: Frame Response not supported in this version");
- return super.LoadFromFile(var1);
- }
- }
-